home *** CD-ROM | disk | FTP | other *** search
/ Suzy B Software 2 / Suzy B Software CD-ROM 2 (1994).iso / extras / programm / gemfsc20 / gemfsc20.lzh / GEMFBIND / VQKEYS.S < prev    next >
Text File  |  1993-03-16  |  880b  |  34 lines

  1. ;*========================================================================
  2. ;* VDIFAST Public Domain VDI bindings.
  3. ;*========================================================================
  4.  
  5.  
  6. ;*------------------------------------------------------------------------
  7. ;* Sample keyboard state.
  8. ;*------------------------------------------------------------------------
  9.  
  10.           globl     _vq_key_s
  11. _vq_key_s:
  12. ;    .cargs    #8,handle.w,status.l
  13.  
  14. handle      =         8
  15. status      =         10
  16.  
  17.           link        a6,#0
  18.  
  19. ;          VContrl    #128
  20.           move.w    handle(a6),-(sp)    ; contrl[6]
  21.           clr.l     -(sp)                ; contrl[5,4]
  22.           clr.l     -(sp)                ; contrl[3,2]
  23.           clr.w     -(sp)                ; contrl[1]
  24.           move.w    #128,-(sp)            ; contrl[0]
  25.  
  26.           subq.l    #4,sp                ;* -> ptsout
  27.           move.l    status(a6),-(sp)    ;* -> intout
  28.           subq.l    #8,sp                ;* -> ptsin, intin
  29.           pea        16(sp)                ;* -> contrl
  30.  
  31.           jmp        vdicall
  32.  
  33.           end
  34.